home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / drdtips.zip / 1901.TXT < prev    next >
Text File  |  1993-01-07  |  4KB  |  86 lines

  1.                                 FYI
  2. Note:  The origin of this information may be internal or external
  3. to Novell.  Novell makes every effort within its means to verify
  4. this information.  However, the information provided in this
  5. document is FOR YOUR INFORMATION only.  Novell makes no explicit
  6. or implied claims as to the validity of this information.)
  7.  
  8.           TITLE:  Configuring CSPOOL
  9.    DOCUMENT ID#:  FYI-M-1901
  10.            DATE:  29DEC92
  11.         PRODUCT:  DR Multiuser DOS
  12. PRODUCT VERSION:  5.x
  13.      SUPERSEDES:  31MAR92
  14.  
  15.         SYMPTOM:  Additional information on configuring CSPOOL
  16.  
  17.   ISSUE/PROBLEM:  
  18.  
  19. 1. Make sure the user has the DR Multiuser DOS Business Update of
  20. September, 1991 for version 5.0 or DR Multiuser DOS 5.1. 
  21.  
  22. 2. In CCONFIG.SYS, put the line:
  23.      SET CSPOOL C:\OSUTILS\SPOOL.
  24.  
  25. 3. If a secure system has not been installed, there will be a
  26. system-wide CCONFIG.SYS file, a system-wide AUTOEXEC.BAT file,
  27. and the possibility of STARTxxx.BAT files for each session on
  28. each terminal.  The START files are numbered according to this
  29. convention:  STARTxxy is the batch file that will be executed on
  30. startup for terminal xx, session y.  For example, the file
  31. START032 is executed for terminal 03, session 2 upon booting. 
  32. (The main console is terminal 00.)  If a secure system has been
  33. installed, the system administrator should create an AUTOEXEC.BAT
  34. file for EACH USER (in that user's subdirectory), and execute
  35. that instead of a START file.  Different programs can be executed
  36. from each session on the terminal by using IF "%1"=="x" for
  37. session x, in the user's AUTOEXEC file.
  38.  
  39. 4. In the system-wide AUTOEXEC.BAT file, put the line:
  40.      IF "%1"=="1" CSPOOL START
  41. This starts CSPOOL from the main console.  If a secure system has
  42. been installed, and there are individual user AUTOEXEC.BAT files,
  43. do NOT include this line in each of those.
  44.  
  45.  
  46. 5. If STARTxxx.BAT files are used (in place of AUTOEXEC.BAT),
  47. CSPOOL may have trouble initializing simultaneously with other
  48. processes.  The user can work around this problem by using
  49. START001.BAT to initialize CSPOOL with a pause, e.g.: 
  50.  
  51.      START001.BAT
  52.      PROMPT $P$G
  53.      PATH=C:\OSUTILS;C:\;...
  54.      SUSPEND=OFF
  55.      PAUSE
  56.      SET CSPOOL=C:\OSUTILS\SPOOL
  57.      CSPOOL START
  58.  
  59. thus giving other STARTxxx.BAT files time to start applications
  60. before the user initializes CSPOOL.  If AUTOEXEC.BAT is used, and
  61. start files are not, the user can put this line: 
  62.      IF "%1"=="1" PAUSE
  63. before the line IF...CSPOOL START line in AUTOEXEC.BAT, to
  64. accomplish the same thing.
  65.  
  66. 6. The C:\OSUTILS\SPOOL directory collects temporary files which
  67. are sent to the spooler.  Occasionally, a logjam of corrupted
  68. files will block printouts. To solve this, get to a prompt and
  69. type:
  70.      CSPOOL QUIT
  71. then go to the C:\OSUTILS\SPOOL subdirectory, and delete all
  72. files EXCEPT for CONFIG.CPL.
  73.  
  74. 7. CONFIG.CPL is used to control settings for CSPOOL.  Most users
  75. want to reduce the TIME_OUT setting. The minimum time out is 5
  76. seconds.  Most users also want to stop the form feed.  To do so,
  77. set FORMFEED to 0.  This file can be edited in any text editor.
  78.  
  79. 8. CONFIG.CPL also contains a list of files not used by the
  80. spooler.  Printers 3 and 4 are on this list.  If the user has a
  81. printer on COM1 or COM2, these assignments need to be removed
  82. from the NOT_PRINTER list.  To exclude any other printer from the
  83. spooler, add its printer assignment to the NOT_PRINTER list. If
  84. there is a modem running off the multiport board, add that port's
  85. printer assignment to the NOT_PRINTER list. 
  86.